ComponentOne Zip for UWP
Zip for UWP Task-Based Help / Setting the Level of Compression
In This Topic
    Setting the Level of Compression
    In This Topic

    To minimize the file size of the compressed file, set the compression level on the C1ZStreamWriter's constructor by using the following code:

    C#
    Copy Code
    SaveFileDialog dlgSaveFile = new SaveFileDialog();
     
                 if (dlgSaveFile.ShowDialog() == true)
                 {
                     C1ZStreamWriter compressor = new C1ZStreamWriter(dlgSaveFile.OpenFile(),
                         CompressionLevelEnum.BestCompression);
                 }
    
    The code sample above sets the compression level to BestCompression, which has the highest compression time and the lowest speed.

    Other compression level options on the C1ZStreamWriter's constructor include the following:

    See Also